home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00123_utility handlers.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.8 KB  |  167 lines

  1. -- TOOLS
  2.  
  3. --------------------------------------------------------- 
  4. -- CURSOR --
  5. -- set up the cursor of a group of sprites
  6.  
  7. -- what cursor can be:
  8. -- "hand"
  9. -- "nohand" this is a hand with an x through it
  10. -- "pointer"
  11. -- "closedHand"
  12.  
  13. global gTotalSprites
  14.  
  15. on initHandCursor whatCursor, spriteList
  16.   -- set up the drag cursor thingie
  17.   case (whatCursor) of
  18.     "hand":
  19.       set cursor = the number of member "hand"
  20.       set mask = the number of member "hand mask"
  21.     "pointer":
  22.       set cursor = the number of member "pointer"
  23.       set mask = the number of member "pointer mask"
  24.     "noHand":
  25.       set cursor = the number of member "noHand"
  26.       set mask = the number of member "noHand mask"
  27.     "closedHand":
  28.       set cursor = the number of member "closedHand"
  29.       set mask = the number of member "closedHand mask"
  30.     otherwise return
  31.   end case
  32.   
  33.   -- now set the cursor
  34.   if voidP(spriteList) then
  35.     -- director 6 has 120 cells
  36.     set maxCells = gTotalSprites
  37.     
  38.     
  39.     -- default to all the sprites
  40.     put "I am setting a cursor on all the sprites...initCursor() in frame: " & the frame
  41.     
  42.     repeat with x = 1 to maxCells
  43.       if the cursor of sprite x <> [cursor, mask] then
  44.         set the cursor of sprite x = [cursor, mask]
  45.       end if
  46.     end repeat
  47.     
  48.   else
  49.     
  50.     repeat with x in spriteList
  51.       if the cursor of sprite x <> [cursor, mask] then
  52.         set the cursor of sprite x = [cursor, mask]
  53.       end if
  54.     end repeat
  55.   end if
  56. end
  57.  
  58.  
  59. -- this will clear the hand cursor from the listed sprites
  60. on clearHandCursor spriteList
  61.   -- clear the cursor
  62.   if voidP(spriteList) then
  63.     -- director 6 has 120 cells
  64.     set maxCells = gTotalSprites
  65.     
  66.     -- default to all the sprites
  67.     put "I am clearing the cursor on all the sprites...clearCursor() in frame: " & the frame
  68.     
  69.     repeat with x = 1 to maxCells
  70.       set the cursor of sprite x = 0
  71.     end repeat
  72.     
  73.   else
  74.     repeat with x in spriteList
  75.       set the cursor of sprite x = 0
  76.     end repeat
  77.   end if
  78. end
  79.  
  80.  
  81. --------------------------------------------------------- 
  82. -- EFFECT HANDLERS --
  83.  
  84. -- changes the ink for a blink effect
  85. -- this is NOT asynchronous
  86. on blinkSprite targetSprite, blinkInk, repetitions, howLong
  87.   set oldInk = the ink of sprite targetSprite
  88.   
  89.   -- get into the loop
  90.   repeat with x = 1 to repetitions
  91.     set the ink of sprite targetSprite = blinkInk
  92.     updateStage
  93.     
  94.     wait(howLong)
  95.     
  96.     set the ink of sprite targetSprite = oldInk
  97.     updateStage
  98.     
  99.     wait(howLong)
  100.   end repeat
  101. end
  102.  
  103. ---------------------------------------------------------
  104. -- MISC --
  105. on wait howLong
  106.   set endTime = the timer + howLong
  107.   
  108.   repeat while the timer < endTime
  109.     updateStage
  110.   end repeat
  111. end
  112.  
  113. -- eliminating redraw buggies...
  114.  
  115. on forceFullStageRedraw
  116.   tell the stage
  117.     set the stageColor = the stageColor
  118.     updateStage
  119.   end tell
  120. end
  121.  
  122. on forceFullRedraw
  123.   forceFullStageRedraw()
  124.   
  125.   if the windowlist <> [] then
  126.     -- walk through director's windowList
  127.     repeat with x in the windowList
  128.       set thisWindow = x
  129.       tell thisWindow
  130.         set the stageColor = the stageColor
  131.         updateStage
  132.       end tell
  133.     end repeat
  134.     
  135.   end if
  136. end
  137.  
  138.  
  139. -------------------------------------------------------------------------------------
  140. -- puppet controlling routine
  141. --
  142. --on puppetsOff whatPuppets
  143. --  
  144. --  if voidP(whatPuppets) then
  145. --    -- default to all sprite channels
  146. --    repeat with x = 1 to 48
  147. --      puppetSprite x, FA√ÉSE
  148. --    end repeat
  149. --    
  150. --    return -1
  151. --    
  152. --  else
  153. --    -- otherwise we have a list
  154. --    if ilk(whatPuppets, #list) then
  155. --      repeat with x in whatPuppets
  156. --        puppetSprite x, FALSE
  157. --      end repeat
  158. --      
  159. --      return 0
  160. --    end if
  161. --  end if
  162. --  
  163. --end
  164. --
  165. --------------------------------------------------------------------------------------
  166. --
  167.